home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 2 / ACE CD 2.iso / FILES / UTILS / COMICST1.DMS / in.adf / Source / defs.h < prev    next >
Encoding:
Text File  |  1994-11-20  |  323 b   |  12 lines

  1. typedef unsigned char BOOL;
  2. typedef unsigned char BYTE;
  3. #define FALSE 0
  4. #define TRUE 1
  5. #define NOT !
  6. #define repeat do
  7. #define until(cond) while(NOT(cond))
  8. #define BLANK ' '  /* space */
  9. #define EOS '\0'   /* end of string */
  10. #define STREQ(s1,s2) (strcmp(s1,s2) == 0)
  11. #define NULLSTR(s) (s[0] == EOS)
  12. #define ODD(n) (n & 1)